home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / D_RAS.ZIP / TESTFORM.DFM / TESTFORM.txt
Encoding:
Text File  |  1996-09-22  |  4.1 KB  |  216 lines

  1. object frmTest: TfrmTest
  2.   Left = 7
  3.   Top = 26
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'RAS Test'
  7.   ClientHeight = 313
  8.   ClientWidth = 601
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object lstEntries: TListBox
  16.     Left = 8
  17.     Top = 32
  18.     Width = 113
  19.     Height = 137
  20.     ItemHeight = 13
  21.     TabOrder = 1
  22.     OnClick = lstEntriesClick
  23.   end
  24.   object btnGetEntries: TButton
  25.     Left = 8
  26.     Top = 8
  27.     Width = 113
  28.     Height = 23
  29.     Caption = 'Enum RAS Entries'
  30.     TabOrder = 0
  31.     OnClick = btnGetEntriesClick
  32.   end
  33.   object btnCreateEntry: TButton
  34.     Left = 128
  35.     Top = 32
  36.     Width = 75
  37.     Height = 23
  38.     Caption = 'Create entry'
  39.     TabOrder = 2
  40.     OnClick = btnCreateEntryClick
  41.   end
  42.   object btnEditEntry: TButton
  43.     Left = 128
  44.     Top = 56
  45.     Width = 75
  46.     Height = 23
  47.     Caption = 'Edit entry'
  48.     Enabled = False
  49.     TabOrder = 3
  50.     OnClick = btnEditEntryClick
  51.   end
  52.   object grpSelectedEntry: TGroupBox
  53.     Left = 8
  54.     Top = 176
  55.     Width = 273
  56.     Height = 129
  57.     TabOrder = 4
  58.     object lblUserName: TLabel
  59.       Left = 8
  60.       Top = 20
  61.       Width = 48
  62.       Height = 13
  63.       Caption = 'Username'
  64.     end
  65.     object lblPassword: TLabel
  66.       Left = 8
  67.       Top = 44
  68.       Width = 46
  69.       Height = 13
  70.       Caption = 'Password'
  71.     end
  72.     object lblAsync: TLabel
  73.       Left = 8
  74.       Top = 104
  75.       Width = 63
  76.       Height = 13
  77.       Caption = 'Async status:'
  78.     end
  79.     object lblStatus: TLabel
  80.       Left = 80
  81.       Top = 104
  82.       Width = 185
  83.       Height = 13
  84.       AutoSize = False
  85.     end
  86.     object btnGetParams: TButton
  87.       Left = 192
  88.       Top = 16
  89.       Width = 75
  90.       Height = 23
  91.       Caption = 'Get params'
  92.       Enabled = False
  93.       TabOrder = 2
  94.       OnClick = btnGetParamsClick
  95.     end
  96.     object btnDialEntry: TButton
  97.       Left = 8
  98.       Top = 72
  99.       Width = 75
  100.       Height = 23
  101.       Caption = 'Dial'
  102.       Enabled = False
  103.       TabOrder = 4
  104.       OnClick = btnDialEntryClick
  105.     end
  106.     object txtUserName: TEdit
  107.       Left = 64
  108.       Top = 16
  109.       Width = 121
  110.       Height = 21
  111.       TabOrder = 0
  112.       OnChange = txtUserNameChange
  113.     end
  114.     object txtPassword: TEdit
  115.       Left = 64
  116.       Top = 40
  117.       Width = 121
  118.       Height = 21
  119.       PasswordChar = '*'
  120.       TabOrder = 1
  121.     end
  122.     object optDialMode: TRadioGroup
  123.       Left = 88
  124.       Top = 64
  125.       Width = 121
  126.       Height = 33
  127.       Caption = 'Dial mode'
  128.       Columns = 2
  129.       ItemIndex = 1
  130.       Items.Strings = (
  131.         'Sync'
  132.         'Async')
  133.       TabOrder = 5
  134.     end
  135.     object btnSetParams: TButton
  136.       Left = 190
  137.       Top = 40
  138.       Width = 75
  139.       Height = 23
  140.       Caption = 'Set params'
  141.       Enabled = False
  142.       TabOrder = 3
  143.       OnClick = btnSetParamsClick
  144.     end
  145.   end
  146.   object btnHangup: TButton
  147.     Left = 520
  148.     Top = 176
  149.     Width = 75
  150.     Height = 23
  151.     Caption = 'Hang up'
  152.     Enabled = False
  153.     TabOrder = 7
  154.     OnClick = btnHangupClick
  155.   end
  156.   object btnActiveConn: TButton
  157.     Left = 224
  158.     Top = 8
  159.     Width = 169
  160.     Height = 23
  161.     Caption = 'Enum active connections'
  162.     TabOrder = 5
  163.     OnClick = btnActiveConnClick
  164.   end
  165.   object lvConnections: TListView
  166.     Left = 224
  167.     Top = 32
  168.     Width = 369
  169.     Height = 137
  170.     ColumnClick = False
  171.     Columns = <
  172.       item
  173.         Caption = 'Name'
  174.         Width = 6
  175.         WidthType = (
  176.           -1)
  177.       end
  178.       item
  179.         Caption = 'Device type'
  180.         Width = 12
  181.         WidthType = (
  182.           -1)
  183.       end
  184.       item
  185.         Caption = 'Device name'
  186.         Width = 12
  187.         WidthType = (
  188.           -1)
  189.       end
  190.       item
  191.         Caption = 'Status'
  192.         Width = 12
  193.         WidthType = (
  194.           -1)
  195.       end>
  196.     ReadOnly = False
  197.     HideSelection = False
  198.     TabOrder = 6
  199.     ViewStyle = vsReport
  200.   end
  201.   object txtCopyright: TMemo
  202.     Left = 456
  203.     Top = 264
  204.     Width = 145
  205.     Height = 49
  206.     Alignment = taCenter
  207.     Color = 8454143
  208.     Enabled = False
  209.     Lines.Strings = (
  210.       'RAS Test V1.0'
  211.       '(C) 1996 by Davide Moretti'
  212.       '<dmoretti@iper.net>')
  213.     TabOrder = 8
  214.   end
  215. end
  216.